projects
/
nextcloud-desktop.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9f444d8
)
blacklist => selectiveSyncList.
author
Camila Ayres
<hello@camilasan.com>
Tue, 18 Feb 2025 14:58:01 +0000
(15:58 +0100)
committer
Jyrki Gadinger
<nilsding@nilsding.org>
Wed, 19 Feb 2025 07:52:54 +0000
(08:52 +0100)
Signed-off-by: Camila Ayres <hello@camilasan.com>
src/gui/folder.cpp
patch
|
blob
|
history
diff --git
a/src/gui/folder.cpp
b/src/gui/folder.cpp
index d9aaeafaeee3ab5aa5db5be09cccc0a4eae3bd9b..0d7166acb92d10f97b83a85bc4688d05d82edbec 100644
(file)
--- a/
src/gui/folder.cpp
+++ b/
src/gui/folder.cpp
@@
-1535,11
+1535,11
@@
void Folder::warnOnNewExcludedItem(const SyncJournalFileRecord &record, const QS
}
bool ok = false;
-
auto blackl
ist = _journal.getSelectiveSyncList(SyncJournalDb::SelectiveSyncBlackList, &ok);
+
const auto selectiveSyncL
ist = _journal.getSelectiveSyncList(SyncJournalDb::SelectiveSyncBlackList, &ok);
if (!ok) {
return;
}
- if (!
blackl
ist.contains(path + "/")) {
+ if (!
selectiveSyncL
ist.contains(path + "/")) {
return;
}